From 95cd5e89acf0600ed3f729d1ec2aeaf127a52569 Mon Sep 17 00:00:00 2001 From: "kaf24@freefall.cl.cam.ac.uk" Date: Tue, 2 Nov 2004 22:41:10 +0000 Subject: [PATCH] bitkeeper revision 1.1159.152.1 (41880d06wl_WFOoG_mxUBjptw3ZC_g) Fix xen-clone for the new semantics of 'make dist'. --- tools/misc/xen-clone | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tools/misc/xen-clone b/tools/misc/xen-clone index 63fccb841d..0ec95ee464 100755 --- a/tools/misc/xen-clone +++ b/tools/misc/xen-clone @@ -68,7 +68,16 @@ then export LINUX_SRC_PATH=${LINUX_DIR} cd ${DEST_BK_REP} - ln -sf ../install install + + # Recent repositories install into 'dist/install' rather than 'install'. + if [ -f install.sh ] + then + mkdir -p dist + ln -sf ../../install dist/install + else + ln -sf ../install install + fi + make -j4 world make -j4 linux24 cd ../install/boot -- 2.30.2